1. add css
// Add the new slick-theme.css if you want the default styling
2. add js
3. add images
your content
your content
your content
4. add settings
5. settings parameters
$(document).ready(function(){
$('.mycrawler2').slick({
autoplay: true,
autoplaySpeed: 2000,
slidesToShow: 6,
slidesToScroll: 6,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 3,
infinite: true,
}
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
centerMode: true,
slidesToScroll: 1,
autoplaySpeed: 500,
variableWidth: true,
}
}
]
});
});